home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
SoundAndMusic
/
cmix
/
lib
/
osciln.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-02-25
|
239 b
|
14 lines
float osciln(amp,si,farray,len,phs)
float amp,si,*farray,*phs;
register len;
{
register i = *phs;
*phs += si;
while(*phs >= len)
*phs -= len;
while(*phs < 0)
*phs += len;
return(*(farray+i) * amp);
}